flutter text field next line

55

Text('\$8.99', style: TextStyle(decoration: TextDecoration.lineThrough))
new TextField(
  keyboardType: TextInputType.multiline,
  maxLines: whatever,
)
TextField(
  keyboardType: TextInputType.multiline,
  maxLines: null,
)

Comments

Submit
0 Comments